home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Windows CE Path.xpl < prev    next >
Text File  |  2001-09-01  |  1KB  |  53 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="4"
  3. "COUNT"="1"
  4. "UIPATH 1"="System\File System\Folders\System"
  5. "NAME"="CE File Sync Folder"
  6. "VERSION"="1.34"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Path"
  9. "DESCRIPTION 1"="You can alter the synchronization path for the first Windows CE H/PC here."
  10. "DESCRIPTION 2"="Note that this plug-in will only work if your H/PC was already connected!"
  11. "AUTHOR"="Xteq Systems"
  12. "CONTACTURL"="http://www.xteq.com"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "COMMENT 1"=" "
  15.  
  16.  
  17. sPath1="HKCU\Software\Microsoft\Windows CE Services\Partners"
  18. sPath2="\Services\Synchronization\Briefcase Path"
  19. sPathEx=""
  20. Sub Plugin_Initialize 
  21.  if RegPathExists(sPath1) then
  22.   iCount=RegEnumPaths(sPath1)
  23.  
  24.   if iCount>0 then
  25.    s=RegEnumElement(1)
  26.    sPathEx=sPath1 & "\" & s & sPath2
  27.  
  28.    s=RegReadValue(sPathEx)
  29.    Call SetUIElement(1,s) 'set data in X-Setup
  30.   else
  31.    Disable
  32.   end if
  33.  else
  34.   Disable
  35.  end if
  36. End Sub
  37.  
  38. Sub Plugin_CheckData(ElementIndex)
  39. End Sub
  40.  
  41. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  42.  s=GetUIElement(1)
  43.  
  44.  if Right(s,1)<>"\" then
  45.   s=s & "\"
  46.  end if
  47.  
  48.  Call RegWriteValue(sPathEx,s,1)
  49. End Sub
  50.  
  51. Sub Plugin_Terminate 
  52. End Sub
  53.